home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / Perl5 / x2p / Makefile.SH < prev    next >
Encoding:
Makefile  |  1994-12-26  |  2.7 KB  |  128 lines  |  [TEXT/MPS ]

  1. case $CONFIG in
  2. '')
  3.     if test -f config.sh; then TOP=.;
  4.     elif test -f ../config.sh; then TOP=..;
  5.     elif test -f ../../config.sh; then TOP=../..;
  6.     elif test -f ../../../config.sh; then TOP=../../..;
  7.     elif test -f ../../../../config.sh; then TOP=../../../..;
  8.     else
  9.         echo "Can't find config.sh."; exit 1
  10.     fi
  11.     . $TOP/config.sh
  12.     ;;
  13. esac
  14. : This forces SH files to create target in same directory as SH file.
  15. : This is so that make depend always knows where to find SH derivatives.
  16. case "$0" in
  17. */*) cd `expr X$0 : 'X\(.*\)/'` ;;
  18. esac
  19.  
  20. echo "Extracting x2p/Makefile (with variable substitutions)"
  21. rm -f Makefile
  22. cat >Makefile <<!GROK!THIS!
  23. # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
  24. #
  25. # $Log:    Makefile.SH,v $
  26.  
  27. CC = $cc
  28. YACC = $yacc
  29. mansrc = $mansrc
  30. manext = $manext
  31. LDFLAGS = $ldflags
  32. SMALL = $small
  33. LARGE = $large $split
  34. mallocsrc = $mallocsrc
  35. mallocobj = $mallocobj
  36. shellflags = $shellflags
  37.  
  38. libs = $libs
  39. !GROK!THIS!
  40.  
  41. cat >>Makefile <<'!NO!SUBS!'
  42.  
  43. CCCMD = `sh $(shellflags) cflags $@`
  44.  
  45. public = a2p s2p find2perl
  46.  
  47. private = 
  48.  
  49. manpages = a2p.man s2p.man
  50.  
  51. util =
  52.  
  53. sh = Makefile.SH cflags.SH find2perl.SH s2p.SH
  54.  
  55. h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
  56.  
  57. c = hash.c $(mallocsrc) str.c util.c walk.c
  58.  
  59. obj = hash.o $(mallocobj) str.o util.o walk.o
  60.  
  61. lintflags = -phbvxac
  62.  
  63. # grrr
  64. SHELL = /bin/sh
  65.  
  66. .c.o:
  67.     $(CCCMD) $*.c
  68.  
  69. all: $(public) $(private) $(util)
  70.     touch all
  71.  
  72. a2p: $(obj) a2p.o
  73.     $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
  74.  
  75. a2p.c: a2p.y
  76.     @ echo Expect many shift/reduce and reduce/reduce conflicts...
  77.     $(YACC) a2p.y
  78.     mv y.tab.c a2p.c
  79.  
  80. a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
  81.     $(CCCMD) $(LARGE) a2p.c
  82.  
  83. clean:
  84.     rm -f a2p *.o a2p.c
  85.  
  86. realclean: clean
  87.     rm -f *.orig */*.orig core $(addedbyconf) a2p.c all
  88.     rm -f Makefile cflags find2perl s2p makefile makefile.old
  89.  
  90. # The following lint has practically everything turned on.  Unfortunately,
  91. # you have to wade through a lot of mumbo jumbo that can't be suppressed.
  92. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
  93. # for that spot.
  94.  
  95. lint:
  96.     lint $(lintflags) $(defs) $(c) > a2p.fuzz
  97.  
  98. depend: $(mallocsrc) ../makedepend
  99.     ../makedepend
  100.  
  101. clist:
  102.     echo $(c) | tr ' ' '\012' >.clist
  103.  
  104. hlist:
  105.     echo $(h) | tr ' ' '\012' >.hlist
  106.  
  107. shlist:
  108.     echo $(sh) | tr ' ' '\012' >.shlist
  109.  
  110. malloc.c: ../malloc.c
  111.     sed <../malloc.c >malloc.c \
  112.         -e 's/"perl.h"/"..\/perl.h"/' \
  113.         -e 's/my_exit/exit/'
  114.  
  115. # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
  116. $(obj):
  117.     @ echo "You haven't done a "'"make depend" yet!'; exit 1
  118. makedepend: depend
  119. !NO!SUBS!
  120. $eunicefix Makefile
  121. case `pwd` in
  122. *SH)
  123.     $rm -f ../Makefile
  124.     ln Makefile ../Makefile
  125.     ;;
  126. esac
  127. rm -f makefile
  128.